home *** CD-ROM | disk | FTP | other *** search
- Path: news.eunet.cz!usenet
- From: Borivoj Kostka <kostka@tovek.cz>
- Newsgroups: comp.lang.c,comp.lang.c++
- Subject: Re: GPF in BC++ 4.5
- Date: 16 Feb 1996 21:27:22 GMT
- Organization: EUnet Czech Republic
- Message-ID: <4g2srr$blo@news.eunet.cz>
- NNTP-Posting-Host: sherlock.dial-up.cz
-
- trstedl@u.washington.edu (Todd Stedl) writes:
- > I'm having problems with a General Protection Exception that I
- > continually get from a program I run in Borland C++ 4.5. The reason I'm
- > cross posting to the C group is b/c it's a standard C program. I've
- > looked at Borland's Web site but found no help there.
- Your program's heap is probably destroyed. Use heapcheck
- and heapwalk functions to check consistency. You maybe owerwrite
- info about size of block, used by free function (placed before
- the allocated block) or the pointer itselt (check if the pointer
- is the same after malloc and before free.
-
-